UserPushTemplateSetRequest constructor Null safety
Implementation
UserPushTemplateSetRequest(String name, {String? userId})
: super(userId: userId) {
url = 'users/${userId ?? state.userId}/push/template';
body = {'name': name};
}
UserPushTemplateSetRequest(String name, {String? userId})
: super(userId: userId) {
url = 'users/${userId ?? state.userId}/push/template';
body = {'name': name};
}