static String? stringNotEmpty( String? string, { String msg = 'O campo não pode ser vazio.', }) => string != null && string.isNotEmpty ? null : msg;