decode static method
Implementation
static EncryptedServiceConfig decode(Object result) {
result as List<Object?>;
return EncryptedServiceConfig(
name: result[0] as String?,
code: result[1] as String?,
config: result[2] as String?,
);
}