/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: MIT-0 */ package com.amazonaws.services.chime.flutterdemo class MethodChannelResult(val result: Boolean, val arguments: Any?) { fun toFlutterCompatibleType(): Map { return mapOf("result" to result, "arguments" to arguments) } }